-
Notifications
You must be signed in to change notification settings - Fork 228
Bugfix for Hover which is visible above other application windows. #2534 #2540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
This pull request changes some projects for the first time in this development cycle. An additional commit containing all the necessary changes was pushed to the top of this PR's branch. To obtain these changes (for example if you want to push more changes) either fetch from your fork or apply the git patch. Git patchFurther information are available in Common Build Issues - Missing version increments. |
aa6bfd9 to
ff1149e
Compare
bundles/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/StickyHoverManager.java
Outdated
Show resolved
Hide resolved
bundles/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/StickyHoverManager.java
Outdated
Show resolved
Hide resolved
ff1149e to
b93e2df
Compare
...les/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java
Outdated
Show resolved
Hide resolved
c85f6d4 to
970aff1
Compare
iloveeclipse
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
@mehmet-karaman : I've verified last patch on Linux, have you verified it on Windows? |
…lipse-platform#2534 This patch is fixing the problem, where the HoverManagers listeners are deregistered but the hover is still visibile on top. This happens when the hover was sticky eclipse was minimized and put back on foreground after it. THe shell visibility was set to false explicitly. Originally the isVisible() was returning false and it won't be set to visible explicitly. Version bump(s) for 4.35 stream
|
Just rebased. jenkins had an OOM error while running ui tests. Surely not related to this change. @HannesWell , @eclipse-platform/eclipsefdn-releng : are you aware about any environment changes for jenkins insances? |
I'm not aware of any. Maybe this was just by chance. The latest build seem to have succeeded. |
@iloveeclipse Yes, it works also on windows. |
This patch is fixing the problem, where the HoverManagers listeners are deregistered but the hover is still visibile on top. This happens when the hover was sticky and after that eclipse was minimized and put back on foreground after it. In that case the listeners are already deregistered and there is no chance to react at all. So for this case the visibility has to be set explicitly when the close is going to stop.